home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE12 / WPTOOLS / WPTOOLS1.ZIP / DEMO / FastText / Project1.dpr next >
Encoding:
Text File  |  1996-07-03  |  295 b   |  18 lines

  1. program Project1;
  2.  
  3. uses
  4.   Forms,
  5.   unit1 in 'unit1.pas' {Form1},
  6.   Unit2 in 'Unit2.pas' {PicSize};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11. {$IFDEF WIN32}
  12.   Application.Initialize;
  13. {$ENDIF}
  14.   Application.CreateForm(TForm1, Form1);
  15.   Application.CreateForm(TPicSize, PicSize);
  16.   Application.Run;
  17. end.
  18.